home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20030409-20031118 / 000216_fdc@columbia.edu_Tue Aug 12 09:21:09 EDT 2003.msg < prev    next >
Text File  |  2020-01-01  |  4KB  |  89 lines

  1. Article: 14454 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Telnet zmodem
  6. Date: 12 Aug 2003 09:18:26 -0400
  7. Organization: Columbia University
  8. Lines: 72
  9. Message-ID: <bhapf2$d0a$1@watsol.cc.columbia.edu>
  10. References: <WpYZa.2154$u%2.1308@nwrdny02.gnilink.net>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1060694307 18267 128.59.39.139 (12 Aug 2003 13:18:27 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 12 Aug 2003 13:18:27 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14454
  16.  
  17. In article <WpYZa.2154$u%2.1308@nwrdny02.gnilink.net>,
  18. marty  <nospam@dontbother.luser> wrote:
  19. : Using:  C-Kermit 8.0.209, 17 Mar 2003, for Linux(RH 8.0)
  20. : I have an account that allows me to connect via telnet to a SunOS 5.7  
  21. : server.  Login presents me with the user menu, one of the choices is to my 
  22. : 'Personal files' section.  Upload/Download features are via xmodem or 
  23. : zmodem.  In the past on the windows side, I've used Hilgreave's 
  24. : HyperTerminal to do uploading/downloading to my 'Personal files' section.
  25. : But know I'm using RedHat... & C-Kermit 8.0.209, 17 Mar 2003, for Linux.  As 
  26. : powerful as C-Kermit is I figure it should allow me to do the same as I did 
  27. : on the windows side but...
  28. : From a C-Kermit prompt I telnet to and log onto the server.  The procedure 
  29. : for downloading via a telnet connection is to choose the download option 
  30. : and name the file one wishes to download.  Chose xmodem or zmodem 
  31. : (C-Kermit: set protocol zmodem) and the process begins...
  32. "set protocol zmodem" invokes an external protocol, whatever Red Hat happens
  33. to have installed as "rz" and "sz".
  34.  
  35. : ================================
  36. : Receiving: pine-error_addressbooks.png
  37. : Retry 0: Bad CRC
  38. : ...
  39. : Bytes received:       0/  30846   BPS:0      ETA 00:00  Retry 0: Bad CRC
  40. : ...
  41. : Retry 0: Bad CRC
  42. : rz: pine-error_addressbooks.png removed.
  43. : ================================
  44. : The process finishes with me being dumped back to the C-Kermit prompt.  
  45. : Status: FAILURE
  46. So "rz" failed.
  47.  
  48. : Uploads are just as unsuccessful.  I start with a login to a telnet session 
  49. : from the C-Kermit prompt.  Initiate an upload using zmodem (again C-Kermit 
  50. : is 'set protocol zmodem', do a Ctrl\c back to C-Kermit prompt issue the 
  51. : following...
  52. : The file name shows in the list of files in my 'Personal file' on the host, 
  53. : but of course the file is 0 KB.
  54. : I've only been using linux for a year or so now and C-Kermit for a few days 
  55. : so any help or suggestions would be much appreciated.
  56. Some knowledge of serial communication is required.  The C-Kermit book has
  57. chapters and chapters explaining all this.  Very briefly:
  58.  
  59.  . We know the interface speed is right because you can see the
  60.    remote text.
  61.  
  62.  . Probably the parity is right ("none") because the host would never
  63.    pick Xmodem or Zmodem as protocols if non-none parity were being
  64.    used.
  65.  
  66.  . Therefore the most likely cause of failure is inadequate flow
  67.    control.
  68.  
  69. You have to make sure an effective form of flow control is established
  70. between every pair of devices along the communication path, e.g. local
  71. computer to its modem, modem to modem, remote modem to remote serial
  72. port.  See:
  73.  
  74.   http://www.columbia.edu/kermit/support.html#hints
  75.  
  76. if you need to follow up.
  77.  
  78. - Frank
  79.